home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / strpchrt.zip / BC.MAK next >
Text File  |  1993-07-31  |  1KB  |  38 lines

  1. #----------------------------------------------------------------------
  2. # Makefile for Strip Chart Library Example Programs
  3. # This makefile recompiles all the example programs.
  4. #
  5. # Compiler: Borland C++ Version 3.1 Small Memory Model
  6. #
  7. # Note: Change the "LIBPATH" and "INCLUDEPATH" macros below
  8. # if you installed the Borland files in a directory other than
  9. # "C:\BORLANDC\"
  10. #
  11. # Usage: MAKE -f BC.MAK
  12. #
  13. #----------------------------------------------------------------------
  14.  
  15. # Macro for path of Strip Chart library file
  16. SCLIB = scbcs.lib
  17.  
  18. # Macros for Borland library and include files
  19. # Change this if you installed the Borland files in a different directory.
  20. LIBPATH = C:\BORLANDC\LIB
  21. INCLUDEPATH = C:\BORLANDC\INCLUDE
  22.  
  23. # Macro for compiler and options
  24. CC = bcc -ms -DBORLAND=1 -I$(INCLUDEPATH) -L$(LIBPATH) -f -O2
  25.  
  26. # Impilicit rule for compiling example programs
  27. .c.exe: 
  28.         $(CC) $*.c $(SCLIB)
  29.  
  30. # Targets and dependencies
  31. all: clean ex_test.exe ex_trace.exe ex_step.exe 
  32.         REM Done!
  33.  
  34. clean:
  35.         del ex_test.exe
  36.         del ex_trace.exe
  37.         del ex_step.exe
  38.